home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / mididemo / readme.txt < prev   
Text File  |  1994-10-23  |  1KB  |  35 lines

  1. 'October 24, 1994
  2.  
  3. 'This program demonstrates how to play midi files in
  4. 'Visual Basic without using the MCI.VBX custom control.
  5. 'Instead, it uses the mciSendString() function to issue MCI
  6. 'commands.  For the program to work properly, both the
  7. 'mciSequencer driver and the Midi Mapper must be installed.
  8. 'There is a function in the program which checks for
  9. 'these drivers.
  10.  
  11. 'The program has numerous comments which should explain
  12. 'things pretty well.
  13.  
  14. 'If there is something you're not sure of or you need a better
  15. 'clarification of something, you can send E-Mail to VDG Mike
  16. 'on America Online.
  17.  
  18. 'I'm also working on a demo of how to play CD Audio discs
  19. 'without using the MCI control.  If you have a reference
  20. 'to the MCI commands, you can probably figure it out from this
  21. 'program, as the CD demo will also use mciSendString().
  22.  
  23. 'On a final note, MCI cannot be used to record and save
  24. 'midi files.  To do that you must use the low-level
  25. 'multimedia functions.  Some of these have already be declared
  26. 'in the module file even though they are not actually used.
  27. 'Low-level functions will also give you much more control than
  28. 'the high-level MCI commands, since you communicate directly
  29. 'with the device rather than through the interface.  For example,
  30. 'you can send the midi data needed to play any note on any channel
  31. 'using any patch that you want.  There is a very good program
  32. 'called VB Piano, written by Artic Software, which demonstrates
  33. 'this.
  34.  
  35.